
.images-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: sans-serif;
}

.gallery { 
  width: 100%;
  padding: 0px 15% 15% !important;
  background-color: rgb(30,30,30);
  columns: 3 200px;
  column-gap: 0px;
  margin: 0 !important;
}
.gallery div img{
    width: 100%;
    object-fit: contain;

}
.gallery .gallery-item {
  cursor: pointer;
}

.gallery img:hover {
  box-shadow: 0 0 32px #333;
}

.full {
  background-color: rgba(0, 0, 0, 0.75) !important;
  position: fixed;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 100000;
  transform: none !important;
  clip-path: none !important;
  filter: none !important;
}

.full .content {
  background-color: rgba(0, 0, 0, 0.75) !important;
  height: 100% !important;
  width: 100% !important;
  display: grid;
  transform: none !important;
  clip-path: none !important;
  filter: none !important;
}

.full .content img {
  transform: none !important;
  animation: ease-in 0.5s ease;
  max-width: 100% !important;
  max-height: 100% !important;
  width: fit-content !important;
  height: fit-content !important;
  margin: auto;
  clip-path: none !important;
  filter: none !important;
}
